home *** CD-ROM | disk | FTP | other *** search
/ Software Vault: The Diamond Collection / The Diamond Collection (Software Vault)(Digital Impact).ISO / cdr47 / lzpip103.zip / MAKEFILE.386 < prev    next >
Text File  |  1994-03-14  |  1KB  |  40 lines

  1. CC    = cc
  2. CFLAGS    = -DASMV -O -s
  3.  
  4. OBJZIP    = dzmain.o lzerror.o crc32.o diszip.o\
  5.     zippipe.o deflate.o trees.o bits.o match.o
  6.  
  7. OBJLZW    = doz.o lzerror.o compress.o unlzw.o
  8.  
  9. .c.o:
  10.     $(CC) $(CFLAGS) -c $<
  11.  
  12. all:    dogzip    doz
  13.  
  14. clean:
  15.     rm *.o *.b doz dogzip core
  16.  
  17. doz:    $(OBJLZW)
  18.     $(CC) $(CFLAGS) -o $* $(OBJLZW)
  19.  
  20. dogzip:    $(OBJZIP)
  21.     $(CC) $(CFLAGS) -o $* $(OBJZIP)
  22.  
  23. match.o:    match.S
  24.     $(CC) -c match.S
  25.  
  26. lzerror.o:    lzerror.c
  27.  
  28. doz.o:        doz.c      modern.h lzpipe.h
  29. compress.o:    compress.c modern.h lzpipe.h lzwbits.h
  30. unlzw.o:    unlzw.c    modern.h lzpipe.h lzwbits.h
  31.  
  32. dzmain.o:    dzmain.c   modern.h lzpipe.h
  33. diszip.o:    diszip.c   modern.h lzpipe.h stdinc.h zipdefs.h crc32.h
  34. zippipe.o:    zippipe.c  modern.h lzpipe.h zalloc.h zipdefs.h zipguts.h oscode.h crc32.h
  35. deflate.o:    deflate.c  modern.h lzpipe.h zalloc.h zipdefs.h zipguts.h
  36. trees.o:    trees.c    modern.h lzpipe.h zalloc.h zipdefs.h zipguts.h
  37. bits.o:        bits.c     modern.h lzpipe.h zalloc.h zipdefs.h zipguts.h stdinc.h
  38. crc32.o:    crc32.c    modern.h crc32.h
  39. match.o:    match.S
  40.